home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi 2.0 - Programmer's Utilities Power Pack
/
Delphi 2.0 Programmer's Utilities Power Pack.iso
/
a_to_d
/
ccs16
/
csfppat.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1996-09-15
|
430b
|
30 lines
unit CSFPPat;
interface
uses
SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
Forms, Dialogs, StdCtrls;
type
TPatForm = class(TForm)
Label1: TLabel;
Edit1: TEdit;
Label2: TLabel;
Edit2: TEdit;
Label3: TLabel;
private
{ Private declarations }
public
{ Public declarations }
end;
var
PatForm: TPatForm;
implementation
{$R *.DFM}
end.